projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba51c31
)
remove unnecessary return when printing blocks
author
Andrea Corallo
<akrl@sdf.org>
Mon, 25 Nov 2019 19:33:47 +0000
(20:33 +0100)
committer
Andrea Corallo
<akrl@sdf.org>
Wed, 1 Jan 2020 10:38:11 +0000
(11:38 +0100)
lisp/emacs-lisp/comp.el
patch
|
blob
|
history
diff --git
a/lisp/emacs-lisp/comp.el
b/lisp/emacs-lisp/comp.el
index 5f0b61b734fe7bbb6b6112e3af3abdf5d6d11dd3..4167dcf4b9128b20cfe0d6303d34eb6f35d52f61 100644
(file)
--- a/
lisp/emacs-lisp/comp.el
+++ b/
lisp/emacs-lisp/comp.el
@@
-352,7
+352,7
@@
VERBOSITY is a number between 0 and 3."
(comp-log (format "\nFunction: %s\n" (comp-func-name func)) verbosity)
(cl-loop for block-name being each hash-keys of (comp-func-blocks func)
using (hash-value bb)
- do (comp-log (concat "<" (symbol-name block-name) ">
\n
") verbosity)
+ do (comp-log (concat "<" (symbol-name block-name) ">") verbosity)
(comp-log (comp-block-insns bb) verbosity))))
(defun comp-log-edges (func)